NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name [2015] OGame: Campos Disponibles // @author Capt Katana // @description Muestra la cantidad de campos que te quedan disponibles en un planeta // @version 2015.1 // @date 2015-07-27 // @namespace campos-disponibles // @include http://*.ogame.*/game/index.php?page=* // ==/UserScript== (function () { /* START CRIPT */ var calculateAbailableFields = (function () { $('.smallplanet').each(function( index ) { var fields = (($(this).html()).split("km (")[1]).split(")<BR>")[0]; var abailable = fields.split("/")[1] - fields.split("/")[0]; var abailableString = (abailable > 9 ? '<font style="color: lime">' : '<font style="color: red">0') + abailable + '</font> '; var newText = abailableString + $(this).find(".planet-name").text(); $(this).find(".planet-name").html( newText ); }); }).toString (); var script = document.createElement ("script"); script.setAttribute ("type", "application/javascript"); script.textContent = "(" + calculateAbailableFields + ") ();"; document.body.appendChild (script); /* !SCRIPT */ })();